home *** CD-ROM | disk | FTP | other *** search
/ Aminet 1 (Walnut Creek) / Aminet - June 1993 [Walnut Creek].iso / aminet / util / crypt / idea.lha / orig_readme < prev    next >
Text File  |  1992-05-12  |  686b  |  15 lines

  1. INSTALLATION
  2. ============
  3.  
  4. Change the type definitions in 'crypt.h' to the representations in your computer
  5.   typedef int            int32;      /* signed 32-bit integer   */
  6.   typedef unsigned int   u_int32;    /* unsigned 32-bit integer */
  7.   typedef unsigned short u_int16;    /* unsigned 16-bit integer */
  8.   typedef char           u_int8;     /* unsigned 8-bit integer  */
  9.  
  10. Execute the following commands:
  11.   man -M . idea                      display the man page of idea
  12.   man -t -M . idea                   print the man page of idea
  13.   cp manl/idea.l /usr/man/manl       copy the man page to your man directory
  14.   make                               compile and link the application
  15.